home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / minix / update~4.z / update~4 / lib_stdio_vsscanf.c < prev   
Encoding:
C/C++ Source or Header  |  1989-09-06  |  386 b   |  24 lines

  1. /*                v s s c a n f
  2.  *
  3.  * This function provides the same functionality as sscanf except
  4.  * that it uses varargs.h.
  5.  *
  6.  * Patchlevel 1.0
  7.  *
  8.  * Edit History:
  9.  */
  10.  
  11. #include "stdiolib.h"
  12.  
  13. /*LINTLIBRARY*/
  14.  
  15. int vsscanf(buf, fmt, args)
  16.  
  17. CONST char *buf;                /* input buffer */
  18. CONST char *fmt;                /* format */
  19. va_list    args;                /* argument list */
  20.  
  21. {
  22.   return _doscanf(1, buf, fmt, args);
  23. }
  24.